:root {
  --bg: #f0f4ec;
  --bg-2: #e6ecdf;
  --ink: #0f1f17;
  --ink-soft: #3a4a3f;
  --moss:  #97296a;
  --lime: #84cc16;
  --line: rgba(15, 31, 23, 0.12);
  --shadow: 0 20px 50px -20px rgba(15, 31, 23, 0.35);
  --radius: 18px;
  --maxw: 1200px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    background: var(--bg);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 80px;
    height: 80px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #97296a;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link, nav-links {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover, nav-links:hover {
    color: #97296a;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #97296a;
    transition: width 0.3s ease;
}

.nav-link:hover::after, nav-links:hover::after {
    width: 100%;
}

.donate-btn {
    background: #97296a;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.donate-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.donate-btn::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 120px 20px 60px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/3184418/pexels-photo-3184418.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 4rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #97296a;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #97296a;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #f9fafb;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.about-text p {
    margin-bottom: 2rem;
    color: #6b7280;
    line-height: 1.7;
}

.values {
    display: grid;
    gap: 2rem;
}

.value {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.value h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.value p {
    color: #6b7280;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Programs Section */
.programs {
    padding: 6rem 0;
    background: white;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.program-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.program-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-features {
    list-style: none;
}

.program-features li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Resources Section */
.resources {
    padding: 6rem 0;
    background: #f9fafb;
}

.resource-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.resource-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.resource-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.emergency-contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact {
    padding: 1rem;
    background: #fef2f2;
    border-radius: 10px;
    border-left: 4px solid #ef4444;
}

.contact strong {
    display: block;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.phone {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ef4444;
}

.resource-list {
    list-style: none;
}

.resource-link {
    display: block;
    padding: 0.75rem 0;
    color: #97296a;
    text-decoration: none;
    border-bottom: 1px solid #e5e7eb;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #97296a;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.contact-item p {
    color: #6b7280;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #97296a;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */


.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #97296a;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2563eb;
}

.footer-bottom {
    text-align: center
}

.footer-bottom a {
    color: #2563eb;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 15px 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .resource-categories {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Founders Page Styles */
.founders-hero {
    padding: 120px 0 60px;
    background: #97296a;
    color: white;
    text-align: center;
}

.founders-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.founders-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.founders-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
}

.founders-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.founders-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.founder-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    align-items: start;
}

.founder-card:nth-child(even) {
    grid-template-columns: 1fr 300px;
}

.founder-card:nth-child(even) .founder-image {
    order: 2;
}

.founder-card:nth-child(even) .founder-content {
    order: 1;
}

.founder-image {
    position: relative;
}

.founder-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.founder-name {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.25rem;
    color: #97296a;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.credential {
    background: #eff6ff;
    color: #97296a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.founder-bio {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.founder-achievements {
    margin-top: 2rem;
}

.founder-achievements h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.founder-achievements ul {
    list-style: none;
    padding: 0;
}

.founder-achievements li {
    color: #6b7280;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.founder-achievements li::before {
    content: '🏆';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.founders-vision {
    padding: 6rem 0;
    background: white;
}

.vision-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.vision-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 3rem;
}

.vision-quote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #374151;
    font-style: italic;
    margin-bottom: 3rem;
    position: relative;
    padding: 0 2rem;
}

.vision-quote::before,
.vision-quote::after {
    content: '"';
    font-size: 4rem;
    color: #97296a;
    position: absolute;
    top: -1rem;
}

.vision-quote::before {
    left: 0;
}

.vision-quote::after {
    right: 0;
}

.vision-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.vision-stat {
    text-align: center;
}

.vision-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #97296a;
    margin-bottom: 0.5rem;
}

.vision-stat .stat-label {
    font-size: 1rem;
    color: #6b7280;
}

.founders-cta {
    display:none;
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design for Founders Page */
@media (max-width: 768px) {
    .founders-hero-title {
        font-size: 2.5rem;
    }
    
    .founder-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .founder-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .founder-card:nth-child(even) .founder-image,
    .founder-card:nth-child(even) .founder-content {
        order: initial;
    }
    
    .founder-img {
        height: 300px;
    }
    
    .vision-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .vision-quote {
        font-size: 1.125rem;
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .founders-hero-title {
        font-size: 2rem;
    }
    
    .founder-name {
        font-size: 1.5rem;
    }
    
    .founder-credentials {
        flex-direction: column;
    }
    
    .vision-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}